Submit

Chatvolt Mcp

@Miguel J N Martinez

A Model Context Protocol server that wraps the Chatvolt API, providing tools to manage agents, datastores, and CRM workflows. This is a TypeScript-based MCP server that provides tools to interact with Chatvolt.
Overview

Chatvolt MCP Server Overview

This document provides a summary of the chatvolt-mcp server, a Model Context Protocol (MCP) server designed to interact with the Chatvolt API.

Introduction

The Chatvolt MCP Server is a TypeScript-based application that exposes the Chatvolt API as a set of tools. It allows for the management of agents, datastores, and CRM workflows within a system that supports MCP.

Installation

To use the server, you can run it directly with npx:

npx chatvolt-mcp

For integration with Roo, you need to configure the mcp.json file, specifying the command, arguments, and the necessary CHATVOLT_API_KEY environment variable.

Tools

The server provides a comprehensive set of tools categorized into three main groups:

Agent Tools

These tools are for managing Chatvolt agents.

CRM Tools

These tools manage CRM scenarios and steps.

Datastore Tools

These tools are for managing datastores and datasources.

Configuration

The server requires a CHATVOLT_API_KEY to be set as an environment variable for authentication with the Chatvolt API.

export CHATVOLT_API_KEY="your_api_key_here"

Development

The project includes scripts for standard development workflows:

  • npm install: Installs dependencies.
  • npm run build: Builds the TypeScript source code.
  • npm run watch: Runs the builder in watch mode for development.
  • npm run inspector: Launches the MCP Inspector for debugging the server's communication.

Server Config

{
  "mcpServers": {
    "chatvolt-mcp": {
      "command": "npx",
      "args": [
        "chatvolt-mcp"
      ],
      "env": {
        "CHATVOLT_API_KEY": "YOUR KEY FROM chatvolt.ai"
      },
      "disabled": false,
      "alwaysAllow": [
        "get_agent"
      ]
    }
  }
}
© 2025 MCP.so. All rights reserved.

Build with ShipAny.